home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 November / CPNL0711.ISO / boekhoud / finan / BADGER finance v1.0 beta 2.exe / xampplite / phpMyAdmin / libraries / engines / binlog.lib.php < prev    next >
PHP Script  |  2005-12-06  |  409b  |  20 lines

  1. <?php
  2. /* $Id: binlog.lib.php,v 1.1 2005/12/07 10:55:34 cybot_tm Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. class PMA_StorageEngine_binlog extends PMA_StorageEngine
  6. {
  7.     /**
  8.      * returns string with filename for the MySQL helppage
  9.      * about this storage engne
  10.      *
  11.      * @return  string  mysql helppage filename
  12.      */
  13.     function getMysqlHelpPage()
  14.     {
  15.         return 'binary-log';
  16.     }
  17. }
  18.  
  19. ?>
  20.